nginx monitoring
Cacti
pecrona 使用
下記を追加(/etc/nginx/default.conf)
code:conf
location /server-status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
local から接続確認
code:shell
# curl localhost/server-status
Active connections: 1
server accepts handled requests
1019 1019 1112
Reading: 0 Writing: 1 Waiting: 0
table:項目
Active connections 現在の接続数
server accepts handled requests 接続数
ハンドラ数
1 リクエスト当たりのハンドラ数
Reading リスクエストヘッダ読み取り数
Writing リクエストに応じた応答数
Waiting キープアライブ数
active - (reading + writing) |